armv4
authorDebian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Sun, 20 Oct 2019 19:33:00 +0000 (20:33 +0100)
committerDmitry Shachnev <mitya57@debian.org>
Sun, 20 Oct 2019 19:33:00 +0000 (20:33 +0100)
Gbp-Pq: Name armv4.diff

src/corelib/global/qprocessordetection.h

index 77b3ba36b0fd74531a0d8d99b0db0ed3dcf0e26e..fb4dc67c85e43defe6b11e1a7775bf4d37b734a0 100644 (file)
 #  elif defined(__ARM_ARCH_5TEJ__) \
         || defined(__ARM_ARCH_5TE__)
 #    define Q_PROCESSOR_ARM 5
+#  elif defined(__ARM_ARCH_4T__)
+#    define Q_PROCESSOR_ARM 4
 #  else
 #    define Q_PROCESSOR_ARM 0
 #  endif
 #  endif
 #  if Q_PROCESSOR_ARM >= 5
 #    define Q_PROCESSOR_ARM_V5
+#  endif
+#  if Q_PROCESSOR_ARM >= 4
+#    define Q_PROCESSOR_ARM_V4
 #  else
 #    error "ARM architecture too old"
 #  endif